home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -in_the_mag- / reader_requests / wild / include / extensions / ppct.i < prev    next >
Text File  |  2000-02-23  |  721b  |  39 lines

  1.  
  2.     include    exec/types.i
  3.  
  4.     STRUCTURE    ppctnode,0
  5.         WORD    ppctn_splitatx
  6.          WORD    ppctn_splitaty
  7.          WORD    ppctn_splitatz
  8.          STRUCT    ppctn_childs,8*4
  9.          WORD    ppctn_numofcols
  10.          WORD    ppctn_colsarray
  11.         LABEL    ppctn_SIZEOF
  12.     
  13.     STRUCTURE    ppctprek,0
  14.         WORD    ppctp_x
  15.         WORD    ppctp_y
  16.         WORD    ppctp_z
  17.         LABEL    ppctp_SIZEOF
  18.     
  19.     STRUCTURE    ppct,0
  20.         APTR    ppct_pool
  21.         APTR    ppct_root
  22.         WORD    ppct_maxdepth
  23.         WORD    ppct_maxpernode    
  24.         APTR    ppct_truechunky
  25.         APTR    ppct_prekchunky
  26.         BYTE    ppct_flags
  27.         BYTE    ppct_hole00
  28.         LABEL    ppct_SIZEOF
  29.  
  30.     BITDEF    PPCT,RGBMode,0    
  31.  
  32. PPCTBASE        EQU    $8eeee000    
  33. PPCT_ChunkyArray    EQU    PPCTBASE+0
  34. PPCT_MaxTreeDepth    EQU    PPCTBASE+1
  35. PPCT_MaxColorsPerNode    EQU    PPCTBASE+2
  36. PPCT_ChunkyPixelsNum    EQU    PPCTBASE+3
  37. PPCT_RGBMode        EQU    PPCTBASE+4
  38.  
  39.